<style>
            .center-img {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 5vh; /* Adjust height as needed */
            }
            
            .text-center {
                font-size: 20px;
                text-align: center;
            }
            
            .column-box {
            display: flex;
            flex-direction: column; /* Ensures items are stacked vertically */
            justify-content: center;
            align-items: center;
            height: 200px;
            width: 100%; /* Makes the box responsive to its container's width */
            max-width: 600px; /* Sets a maximum width */
            border: 1px solid #ddd;
            border-radius: 8px; /* Adds rounded corners */
            background-color: #f9f9f9; /* Sets a light grey background */
            padding: 20px; /* Adds inner spacing */
            margin: 30px auto; /* Centers the box horizontally with vertical margins */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
            transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition effects */
            overflow: hidden; /* Ensures child elements don't overflow the container */
            }
        
            /* Hover effect for interactivity */
            .column-box:hover {
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
            transform: translateY(-5px); /* Slightly raises the box on hover */
            }
        
            /* Responsive design: Adjusts height on smaller screens */
            @media (max-width: 600px) {
            .column-box {
            height: auto; /* Allows height to adjust based on content */
            padding: 15px; /* Reduces padding on smaller screens */
            }
            .fixed-header {
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 2000;
            }
            .row {
            margin: 0;
            }
            .column-text {
            text-align: center;
            /* Change this font-size to adjust the text size */
            font-size: 28px;
            }
            .column-image {
            max-width: 100%;
            height: auto;
            margin-bottom: 10px;
            }
            hr.new2 {
            border-top: 1px dashed red;
            }
            .fixed-header {
            position: fixed; /* Keeps the header fixed at the top */
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1; /* Ensure it's behind the body content */
            }
    </style>